home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000001_news@columbia.edu _Sat Feb 10 09:11:49 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id JAA07584 for <kermit.misc@watsun>; Sat, 10 Feb 1996 09:11:48 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id JAA12148 for kermit.misc@watsun; Sat, 10 Feb 1996 09:11:47 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!xmission!news.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Key Scan won't stick in 3.11
  8. Message-ID: <1996Feb9.190859.73725@cc.usu.edu>
  9. Date: 9 Feb 96 19:08:58 MDT
  10. References: <4fgfet$sh3@uwm.edu>
  11. Organization: Utah State University
  12. Lines: 50
  13.  
  14. In article <4fgfet$sh3@uwm.edu>, hseaver@alpha1.csd.uwm.edu (Harmon F Seaver) writes:
  15. >    Is there something wrong with 3.11 or am I just missing something? I want
  16. > to set the Grey Page Up key (\4425) to \Kkpenter so that it acts as a clear
  17. > key for Notis. If I just do a set key for that, it works fine, but even tho
  18. > I put it in the last line of the vt300.ini file (which gets called or taken
  19. > in mskermit.ini), it doesn't work. Other stuff -- comport and parity -- that
  20. > I've changed stick, this doesn't. Would an upgrade to 3.14 do it or is it
  21. > something else. Thanx.
  22. ------------
  23.     The only things I can imagine are a) another set key for it appears
  24. in your setup material, somewhere, and/or b) your host app (Notis) wants
  25. one code and the host machine commands another. Here is part b) expanded,
  26. as a cutout from distribution file msvibm.vt:
  27.  
  28. Codes sent by DEC Numeric Keypad
  29. Key        Verb    IBM    ANSI VT320/VT102 mode    VT52/H19 mode
  30.             key    Numeric    Application    Numeric    Application
  31.  
  32. PF1/HF7/Blue   Gold,pf1 F1    SS3 P    SS3 P        ESC P    ESC P
  33. PF2/HF8/Red     pf2    F2    SS3 Q    SS3 Q        ESC Q    ESC Q
  34. PF3/HF9/Grey    pf3    F3    SS3 R    SS3 R        ESC R    ESC R
  35. PF4/HF1         pf4    F4    SS3 S    SS3 S        ESC S    ESC S
  36. 0        kp0    SF7    0    SS3 p        0    ESC ? p
  37. 1        kp1    SF3    1    SS3 q        1    ESC ? q
  38. 2        kp2    SF4    2    SS3 r        2    ESC ? r
  39. 3        kp3    SF5    3    SS3 s        3    ESC ? s
  40. 4        kp4    F9    4    SS3 t        4    ESC ? t
  41. 5        kp5    F10    5    SS3 u        5    ESC ? u
  42. 6        kp6    SF1    6    SS3 v        6    ESC ? v
  43. 7        kp7    F5    7    SS3 w        7    ESC ? w
  44. 8        kp8    F6    8    SS3 x        8    ESC ? x
  45. 9        kp9    F7    9    SS3 y        9    ESC ? y
  46. comma (,)    kpcoma    SF2    ,    SS3 l        ,    ESC ? l
  47. minus (-)    kpminus    F8    -    SS3 m        -    ESC ? m
  48. period (.)    kpdot    SF8    .    SS3 n        .    ESC ? n
  49. Enter        kpenter    SF6    CR or    SS3 M        CR or    ESC ? M
  50.                 CR LF    (newline on)    CR LF
  51.  (SFn means hold down Shift key while pressing Function key n.)
  52.  
  53.  
  54.         As we can see, \Kkpenter has triple meanings, depending on what
  55. the remote host has sent to the MSK terminal emulator for numeric versus
  56. application keypad mode, and whether or not newline mode is on. The same
  57. is true of real DEC terminals. MSK v3.14 has a user command, SET TERM
  58. KEYPAD {APPLICATION, NUMERIC} to set the initial state, and the remote
  59. host can (and must be able to) revise that by its own commands.
  60.     If Notis insists upon one particular byte string, rather than a
  61. true DEC VTxx numeric keypad Enter key, then you can define Grey PageUp
  62. as that literal string.
  63.     Joe D.